From Cppreference
| Defined in header <cstdio>
|
|
|
|
| char *gets( char *str );
|
|
|
|
|
|
Reads stdin into given character string until a newline character is found or end-of-file occurs.
Parameters
| str
| -
| character string to be written
|
Return value
str on success, NULL otherwise
Notes
The bounds checking is not performed therefore this function is extremely vulnerable to buffer-overflow attacks. Use fgets() instead.
See also
|
|
|
| reads formatted input from stdin, a file stream or a buffer (function)
|
|
|
|
| gets a character string from a file stream (function)
|
|
|
|
| writes a character string to a file stream (function)
|